5fd4c736d8e95d1bc98caeffa1891c04e9a7878b,sonar-server/src/main/java/org/sonar/server/rule/RuleUpdater.java,RuleUpdater,updateTags,#RuleUpdate#Context#,120
Before Change
}
private void updateTags(RuleUpdate update, Context context) {
if (update.getTags() == null || update.getTags().isEmpty()) {
context.rule.setTags(Collections.<String>emptySet());
} else {
RuleTagHelper.applyTags(context.rule, update.getTags());
After Change
}
private void updateTags(RuleUpdate update, Context context) {
Set<String> tags = update.getTags();
if (tags == null || tags.isEmpty()) {
context.rule.setTags(Collections.<String>emptySet());
} else {